local tArgs = {...}
for k,v in ipairs(tArgs) do
 if k==1 then
  write(tostring(v))
 else
  write(" "..tostring(v))
 end
end
write("\n")